home *** CD-ROM | disk | FTP | other *** search
Text File | 1999-02-04 | 835 b | 48 lines | [TEXT/MSCT] |
- //
- // Fonts By Page.M1S: show font list for document
- // per page
- //
-
- //
- // *************************************
- // Procedures
- // *************************************
- //
-
- proc fontProc
- print " " + it.name
- fontCount = fontCount + 1
- endproc
-
- proc pageProc
- pageCount = pageCount + 1
- pageList[pageCount] = it
- endproc
-
- //
- // Execute a procedure for all images
- //
- theJob = it
-
- print "Complete Font List for " + theJob.NAME
-
- pageCount = 0
- on page do pageProc
- scan theJob links uses,contains,overlaps
- scan reset
-
- on font_request do fontProc
- page = 0
- while page < pageCount do
- page = page + 1
- print "Page " + pageList[page].pagenumber
- fontCount = 0
- scan pageList[page] links uses,contains,overlaps
- if fontCount = 0 then
- print " -- No Fonts --"
- endif
- wend
- scan reset
-
- print "---------------------------------------"
-